home *** CD-ROM | disk | FTP | other *** search
/ Exploring Where & Why / Exploring Where & Why.iso / pc / Lib.cst / 00027_print.ls < prev    next >
Encoding:
Text File  |  2004-07-11  |  4.1 KB  |  190 lines

  1. --
  2. -- Print
  3. --
  4.  
  5. property ancestor
  6.  
  7. property printer
  8. property printFont
  9. property printSize
  10. property okFlag
  11. property defRect
  12. property printString  -- a string appended to the bottom of a Nystrom Certificate
  13. property printForground  -- a member (field) set in the foreground of a Nystrom Certificate
  14. property printBackground  -- a member (bmp) set in the background of a Nystrom Certificate
  15.  
  16. on new me
  17.   -- set constants:
  18.   set defRect = rect(0, 31, 640, 430)
  19.   
  20.   -- initialize the ancestor:
  21.   set ancestor = new (script "ClearEvents")
  22.   
  23.   -- do other initializations:
  24.   if xtraExists(ancestor, "printomatic") then
  25.     set okFlag = TRUE
  26.   else
  27.     set okFlag = FALSE
  28.     alert "printOMatic was not loaded!"
  29.   end if
  30.   
  31.   set printString = ""
  32.   return me
  33.   
  34. end
  35.  
  36. ----
  37.  
  38. on destruct me
  39.   if objectP (ancestor) then destruct (ancestor)
  40.   set ancestor = 0
  41. end
  42.  
  43. ----
  44.  
  45. on setPrintString me, str
  46.   set printString = str
  47. end
  48.  
  49.  
  50. on setPrintBackground me, name
  51.   set printBackground = name
  52. end
  53.  
  54.  
  55. on setPrintForgroundMem me, name
  56.   set printForground = name
  57. end
  58.  
  59. ----
  60.  
  61. on initPrinter me
  62.   unload
  63.   
  64.   if not(okFlag) then
  65.     put "Printing was not initialized"
  66.     return 0
  67.   end if
  68.   
  69.   set printer = new(xtra "printomatic")
  70.   
  71.   if not objectP (printer) then 
  72.     alert "You printer is not responding.  Please check to see if it is connected properly."
  73.     return 0
  74.   end if
  75.   
  76.   set printFont = "helvetica"
  77.   set printSize = 14
  78.   
  79.   return 1
  80. end
  81.  
  82. ----
  83.  
  84. on printActivitySpace me, theRect, noTextFlag, klugeFlag
  85.   if voidP (theRect) then set theRect = rect (0, 29, 640, 428)
  86.   
  87.   set doc = xtra("PrintOMatic").new()
  88.   if not objectP(doc) then
  89.     alert "Your printer is not responding. Please check to see if it is connected properly."
  90.     return 0
  91.   end if
  92.   
  93.   doc.register("PMAT170-347-92772")
  94.   
  95.   if the platform contains "win" then
  96.     doc.setTextFont("Arial")
  97.     doc.setProgressMsg("Now Printing" & RETURN & "For faster printing, try turning off the print manager.")
  98.   else
  99.     doc.setTextFont("Helvetica")
  100.     doc.setProgressMsg("Now Printing")
  101.   end if
  102.   doc.setTextJust("centered")
  103.   doc.setTextSize(36)
  104.   doc.setDocumentname("Nystrom Printable Document")
  105.   doc.setLandscapeMode(true)
  106.   
  107.   put "w: " & doc.getPageWidth() & ", H: " & doc.getPageHeight()
  108.   
  109.   --doc.drawPicture(member printBackground, rect(0, 0, doc.getPageWidth(), doc.getPageHeight()))
  110.   
  111.   doc.newPage()
  112.   --set newRect = rect(0, 31, 393, 428)
  113.   doc.newFrame(theRect, false)
  114.   doc.drawStagePicture(theRect)
  115.   
  116.   --doc.append(member "logo", true)
  117.   --set myString = the text of member printForground
  118.   -- put myString
  119.   --doc.append(myString, true)
  120.   
  121.   doc.printStage()
  122.   
  123.   
  124. end
  125.  
  126. ----
  127.  
  128.  
  129. on printCertificate me
  130.   set doc = xtra("PrintOMatic").new()
  131.   if not objectP(doc) then
  132.     alert "Your printer is not responding. Please check to see if it is connected properly."
  133.     return 0
  134.   end if
  135.   
  136.   doc.register("PMAT170-347-92772") 
  137.   
  138.   if the platform contains "win" then
  139.     doc.setTextFont("Arial")
  140.     doc.setProgressMsg("Now Printing" & RETURN & "For faster printing, try turning off the print manager.")
  141.   else
  142.     doc.setTextFont("Helvetica")
  143.     doc.setProgressMsg("Now Printing")
  144.   end if
  145.   doc.setTextJust("centered")
  146.   doc.setTextSize(36)
  147.   doc.setDocumentname("Nystrom Printable Document")
  148.   doc.setLandscapeMode(true)
  149.   
  150.   put "w: " & doc.getPageWidth() & ", H: " & doc.getPageHeight()
  151.   
  152.   if voidP(printBackground) then
  153.     set printBackground = "CERT-08"
  154.   end if
  155.   if voidP(printForground) then
  156.     printForground = "certificateName"
  157.   end if
  158.   
  159.   doc.drawPicture(member printBackground, rect(0, 0, doc.getPageWidth(), doc.getPageHeight()))
  160.   
  161.   doc.newPage()
  162.   set newRect = rect(190, 135, 610, 204)
  163.   doc.newFrame(newRect, false)
  164.   --doc.append(member "logo", true)
  165.   set myString = the text of member printForground
  166.   put myString
  167.   doc.append(myString, true)
  168.   
  169.   doc.print()
  170.   
  171.   
  172. end
  173.  
  174.  
  175.  
  176.  
  177. on drawPictureSub me, whatDoc, mem, locPoint
  178.   
  179.   if count(locPoint) = 2 then 
  180.     set topLeft = locPoint
  181.     set botRight = locPoint + point (the width of mem, the height of mem)
  182.     newFrame (whatDoc, rect(topLeft, botRight), FALSE)
  183.   else
  184.     newFrame(whatDoc, locPoint, FALSE)
  185.   end if
  186.   
  187.   append (whatDoc, mem)
  188. end
  189.  
  190.